home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Terra Sound Library
/
Terra Sound Library.iso
/
player_composer
/
eagleplayer
/
ep_to_install
/
installdata
/
arexxexamples.lha
/
EP_AddUserPrg.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-10-20
|
244b
|
17 lines
/* EaglePlayer - Lade angegebenes Userprogram rein */
parse arg userprgname
address 'rexx_EP'
options results
adduserprg userprgname
if result == "no" then do
say "Userprogram not loaded !"
end
else do
say "New Userprogram loaded !"
end